home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / programming / other / wild / include / clib / wildprefs_protos.h < prev   
C/C++ Source or Header  |  1999-05-25  |  720b  |  29 lines

  1. #ifndef CLIB_WILDPREFS_PROTOS_H
  2. #define CLIB_WILDPREFS_PROTOS_H
  3.  
  4. /*
  5. **    $VER: wildprefs_protos.h 2.00 (8.10.98)
  6. **
  7. **    WildPrefs.library prototypes.
  8. **
  9. */
  10.  
  11. #ifndef  EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14.  
  15. #ifndef  WILDPREFS_H
  16. #include <libraries/wildprefs.h>
  17. #endif
  18.  
  19. struct MinList         *wpGetHandledList();
  20. struct AppPrefs     *wpFindNamedApp(char *name);
  21. BOOL            wpLoadPrefs(struct AppPrefs *app,struct TagItem *tags);
  22. BOOL            wpSetPrefs(struct AppPrefs *app,struct TagItem *tags);
  23. BOOL            wpTestPrefs(struct AppPrefs *app);
  24. BOOL            wpUsePrefs(struct AppPrefs *app);
  25. BOOL            wpSavePrefs(struct AppPrefs *app);
  26. BOOL            wpFreePrefs(struct AppPrefs *app);
  27. ULONG            wpGetAppTag(struct AppPrefs *app,ULONG tagdata,ULONG def);
  28.  
  29. #endif